} else {
String s = this.getMethodDeclaration();
if (this.hasTypeParameters()) {
return renderTypeParameters(s, formalType != null);
}
return s;
}
}
} else {
String s = this.getMethodDeclaration();
if (this.hasTypeParameters()) {
s = renderTypeParameters(s, formalType != null);
}
return ClassNameUtils.replaceInnerMark(s);
}
}